home *** CD-ROM | disk | FTP | other *** search
/ .net 2002 March / DotNetMagazine-Issue107-Coverdisc-NET107-02-03-PCMac.bin / pc / PC Software / free_browsing / DavesQckSearchDbar3-14 / dqsd.exe / searches / msda.xml < prev    next >
Text File  |  2002-09-24  |  6KB  |  129 lines

  1. <search function="msda">
  2.   <name>Microsoft Discussion List Archive</name>
  3.   <category>Computers</category>
  4.   <contributor>Glenn Carr</contributor>
  5.   <link>http://discuss.microsoft.com/archives/index.html</link>
  6.   <email>glenn at glenncarr dot com</email>
  7.   <description>
  8.   Search the discuss.microsoft.com archive
  9.     <div class="helpboxDescLabels">Switches:</div>
  10.     <table class="helpboxDescTable">
  11.       <tr><td colspan="4"><i>One of the following is required:</i></td></tr>
  12.       <tr><td> </td><td>/atl</td><td> - </td><td>Search ATL list archives</td></tr>
  13.       <tr><td> </td><td>/javacom</td><td> - </td><td>Search Java-COM list archives</td></tr>
  14.       <tr><td colspan="4"><hr size="1"/></td></tr>
  15.       <tr><td colspan="4"><i>Optional:</i></td></tr>
  16.       <tr><td> </td><td>/substring</td><td> - </td><td>By default, searches will only match full words. But if you check the "substring search" box, your search will match any word containing the string you have entered.</td></tr>
  17.       <tr><td> </td><td>/author</td><td> - </td><td>Restrict your search to messages posted by a particular person</td></tr>
  18.       <tr><td> </td><td>/since</td><td> - </td><td>Search for messages only since the specified date.</td></tr>
  19.       <tr><td> </td><td>/until</td><td> - </td><td>Search for messages only before the specified date</td></tr>
  20.     </table>
  21.     <div class="helpboxDescLabels">Examples:</div>
  22.     <table class="helpboxDescTable">
  23.       <tr><td>msda /atl /s tooltip /since:2002</td><td> - </td><td>Search the ATL list for tooltip substrings since 1-Jan-2002</td></tr>
  24.       <tr><td></td></tr>
  25.     </table>
  26.   </description>
  27.   <form name="msdaf"
  28.         method="post"
  29.         action="http://discuss.microsoft.com/SCRIPTS/WA-MSD.EXE">
  30.     <input type="hidden" name="S2" value="" />
  31.     <input type="hidden" name="L" value="" />
  32.     <COMMENT>
  33.       The input element above, "L", was a SELECT element with the following options...
  34.       <select name="L">
  35.         <option value="ATL">ATL ATL - Active Template Library</option>
  36.         <option value="AUTHENTICODE">AUTHENTICODE Microsoft Authenticode(TM) technology</option>
  37.         <option value="CAPICOM">CAPICOM Microsoft Capicom List</option>
  38.         <option value="CIFS">CIFS Common Internet File System</option>
  39.         <option value="CryptoAPI">CryptoAPI Microsoft Cryptographic API</option>
  40.         <option value="DCOM">DCOM Distributed COM-Based Code</option>
  41.         <option value="DOTNET-LANGUAGE-DEVS">DOTNET-LANGUAGE-DEVS Compiler Developers for .NET</option>
  42.         <option value="Java-COM">Java-COM Java and COM</option>
  43.         <option value="OSPF">OSPF Mailing List</option>
  44.         <option value="Scriptlets">Scriptlets Scriptlets</option>
  45.         <option value="SmartCardDDK">SmartCardDDK SmartCardDDK</option>
  46.         <option value="SmartCardSDK">SmartCardSDK SmartCardSDK</option>
  47.         <option value="WMTalk">WMTalk WMTalk</option>
  48.       </select>
  49.     </COMMENT>
  50.     <input type="hidden" name="q" value="" />
  51.     <input type="hidden" name="0" value="" /> <comment> Substring </comment>
  52.     <input type="hidden" name="s" value="" /> <comment> subject </comment>
  53.     <input type="hidden" name="f" value="" /> <comment> Author </comment>
  54.     <input type="hidden" name="a" value="" /> <comment> Since </comment>
  55.     <input type="hidden" name="b" value="" /> <comment> Until </comment>
  56.     <input type="hidden" name="I" value="-3" /> <comment> Sort By </comment>
  57.     <COMMENT>
  58.       The input element above, "I", was a SELECT element with the following options...
  59.       <select name="I">
  60.         <option value="0">Nothing</option>
  61.         <option value="1">Item No.</option>
  62.         <option value="-1">Item No., desc.</option>
  63.         <option value="3">Date/Time</option>
  64.         <option value="-3">Date/Time, desc.</option>
  65.         <option value="4">Lines</option>
  66.         <option value="-4">Lines, desc.</option>
  67.         <option value="6">Subject</option>
  68.         <option value="-6">Subject, desc.</option>
  69.         <option value="7">List name</option>
  70.         <option value="-7">List name, desc.</option>
  71.       </select>
  72.     </COMMENT>
  73.  
  74.   </form>
  75.   <script><![CDATA[
  76.     function msda(q)
  77.     {
  78.       if( nullArgs("msda", q) )
  79.         return;
  80.  
  81.       var args = parseArgs(q, "atl, javacom, substring, author, since, until");
  82.       for (var iSwitch = 0; iSwitch < args.switches.length; iSwitch++)
  83.       {
  84.         switch( args.switches[iSwitch].name )
  85.         {
  86.           case "atl":
  87.             document.msdaf.L.value = "ATL";
  88.             break;
  89.           case "javacom":
  90.             document.msdaf.L.value = "Java-COM";
  91.             break;
  92.           case "substring":
  93.             document.msdaf["0"].value = "S";
  94.             break;
  95.           case "author":
  96.             document.msdaf.f.value = args.switches[ iSwitch ].value;
  97.             break;
  98.           case "since":
  99.             document.msdaf.a.value = args.switches[ iSwitch ].value;
  100.             break;
  101.           case "until":
  102.             document.msdaf.b.value = args.switches[ iSwitch ].value;
  103.             break;
  104.           default:
  105.             break;
  106.         }
  107.       }
  108.       
  109.       if ( document.msdaf.L.value == "" )
  110.       {
  111.         nullArgs("msda", "?");
  112.         return;
  113.       }
  114.       
  115.       document.msdaf.q.value = args.q;
  116.  
  117.       submitForm(msdaf);
  118.     }
  119.   ]]></script>
  120.   <copyright>
  121.     The following applies if this file is included and distributed with Dave's Quick Search Deskbar:
  122.     Copyright (c) 2002 David Bau; Distributed under the terms of the GNU Public License, Version 2 (http://www.gnu.org/copyleft/gpl.txt)
  123.   </copyright>
  124.   <created_by>
  125.     This search file was initially created on 09/23/02 at 11:25:51
  126.     by Dave's Quick Search Deskbar Search Wizard version 0.9 (beta),
  127.     Copyright (c) 2002 Glenn Carr; Distributed under the terms of the GNU General Public License, Version 2
  128.   </created_by>
  129. </search>